home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Whiteline: Alpha
/
Whiteline Alpha.iso
/
progtool
/
eiffel
/
vici
/
examples
/
sqrttest.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1994-09-22
|
203 b
|
15 lines
class SqrtTest
feature
sobj: sqrt;
create is
do
sobj.create;
io.putint(sobj.sqrt(1));
io.putint(sobj.sqrt(2));
io.putint(sobj.sqrt(4));
io.putint(sobj.sqrt(8));
end;
end